1. 两数之和

1. 两数之和

题目

给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。

你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。

你可以按任意顺序返回答案。

示例 1:

1
2
3
输入:nums = [2,7,11,15], target = 9
输出:[0,1]
解释:因为 nums[0] + nums[1] == 9 ,返回 [0, 1]

示例 2:

1
2
输入:nums = [3,2,4], target = 6
输出:[1,2]

题解

使用map存储差值和位置。例如: nums = [2, 7, 11, 15], target = 9,那么 map 的第一个元素就是 {2:0}, 2 为元素值, 0 为元素位置,这样能一次性拿到差值元素的位置。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Solution(object):
def twoSum(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: List[int]
"""
# 使用map存储差值和位置。例如: nums = [2, 7, 11, 15], target = 9
# 那么 map 的第一个元素就是 {2:0}, 2 为元素值, 0 为元素位置
# 这样能一次性拿到差值元素的位置
map = {}
for i, x in enumerate(nums):
chazhi = target - x
if chazhi in map:
# 找到了
return [map[chazhi], i]
else:
map[x] = i
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
func twoSum(nums []int, target int) []int {
var m = make(map[int]int)
var res []int

for i, x := range nums{
chazhi := target - x
if _, ok := m[chazhi]; ok{
res = append(res, m[chazhi])
res = append(res, i)
return res
}else{
m[x] = i
}
}
return res
}

变体

总结

参考